1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
import * as React from "react"
import { redirect } from "next/navigation"
import { getServerSession } from "next-auth/next"
import { authOptions } from "@/app/api/auth/[...nextauth]/route"
import { SearchParams } from "@/types/table"
import { searchParamsCache } from "@/lib/tech-project-avl/validations"
import { Skeleton } from "@/components/ui/skeleton"
import { Shell } from "@/components/shell"
import { AcceptedQuotationsTable } from "@/lib/tech-project-avl/table/accepted-quotations-table"
import { getAcceptedTechSalesVendorQuotations } from "@/lib/techsales-rfq/service"
import { getValidFilters } from "@/lib/data-table"
import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"
import { Ellipsis } from "lucide-react"
import { InformationButton } from "@/components/information/information-button"
export interface PageProps {
params: Promise<{ lng: string }>
searchParams: Promise<SearchParams>
}
export default async function AcceptedQuotationsPage({
params,
searchParams,
}: PageProps) {
const { lng } = await params
const session = await getServerSession(authOptions)
if (!session) {
redirect(`/${lng}/auth/signin`)
}
const search = await searchParams
const { page, perPage, sort, filters, search: searchText } = searchParamsCache.parse(search)
const validFilters = getValidFilters(filters ?? [])
const { data, pageCount } = await getAcceptedTechSalesVendorQuotations({
page,
perPage: perPage ?? 10,
sort,
search: searchText,
filters: validFilters,
})
return (
<Shell className="gap-2">
<div className="flex items-center justify-between space-y-2">
<div className="flex items-center justify-between space-y-2">
<div>
<div className="flex items-center gap-2">
<h2 className="text-2xl font-bold tracking-tight">
견적 Result 전송
</h2>
<InformationButton pagePath="evcp/tech-project-avl" />
</div>
{/* <p className="text-muted-foreground">
기술영업 승인 견적서에 대한 요약 정보를 확인하고{" "}
<span className="inline-flex items-center whitespace-nowrap">
<Ellipsis className="size-3" />
<span className="ml-1">버튼</span>
</span>
을 통해 RFQ 코드, 설명, 업체명, 업체 코드 등의 상세 정보를 확인할 수 있습니다.
</p> */}
</div>
</div>
</div>
<React.Suspense fallback={<Skeleton className="h-7 w-52" />}>
{/* Date range picker can be added here if needed */}
</React.Suspense>
<React.Suspense
fallback={
<DataTableSkeleton
columnCount={12}
searchableColumnCount={2}
filterableColumnCount={4}
cellWidths={["10rem", "15rem", "12rem", "10rem", "10rem", "12rem", "8rem", "12rem", "10rem", "8rem", "10rem", "10rem"]}
shrinkZero
/>
}
>
<AcceptedQuotationsTable
data={data}
pageCount={pageCount}
/>
</React.Suspense>
</Shell>
)
}
|